Skip to content

chore(deps): Bump @anthropic-ai/sdk from 0.80.0 to 0.81.0#435

Merged
sjnims merged 1 commit intomainfrom
dependabot/npm_and_yarn/anthropic-ai/sdk-0.81.0
Apr 1, 2026
Merged

chore(deps): Bump @anthropic-ai/sdk from 0.80.0 to 0.81.0#435
sjnims merged 1 commit intomainfrom
dependabot/npm_and_yarn/anthropic-ai/sdk-0.81.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2026

Bumps @anthropic-ai/sdk from 0.80.0 to 0.81.0.

Release notes

Sourced from @​anthropic-ai/sdk's releases.

sdk: v0.81.0

0.81.0 (2026-03-31)

Full Changelog: sdk-v0.80.0...sdk-v0.81.0

Features

  • add .type field to APIError for error kind identification (#790) (4bf637d)

Bug Fixes

  • memory: append path separator in validatePath prefix check (0ac69b3)

Chores

  • ci: run builds on CI even if only spec metadata changed (70b657a)
  • ci: skip lint on metadata-only changes (69bdc94)
  • internal: codegen related update (7ff7390)
  • internal: update gitignore (46d6667)
  • internal: update multipart form array serialization (d55b07d)
  • tests: bump steady to v0.19.4 (4957a5e)
  • tests: bump steady to v0.19.5 (c511ae0)
  • tests: bump steady to v0.19.6 (6d2b4b9)
  • tests: bump steady to v0.19.7 (d6cff9d)
  • tests: bump steady to v0.20.1 (284561f)
Changelog

Sourced from @​anthropic-ai/sdk's changelog.

0.81.0 (2026-03-31)

Full Changelog: sdk-v0.80.0...sdk-v0.81.0

Features

  • add .type field to APIError for error kind identification (#790) (4bf637d)

Bug Fixes

  • memory: append path separator in validatePath prefix check (0ac69b3)

Chores

  • ci: run builds on CI even if only spec metadata changed (70b657a)
  • ci: skip lint on metadata-only changes (69bdc94)
  • internal: codegen related update (7ff7390)
  • internal: update gitignore (46d6667)
  • internal: update multipart form array serialization (d55b07d)
  • tests: bump steady to v0.19.4 (4957a5e)
  • tests: bump steady to v0.19.5 (c511ae0)
  • tests: bump steady to v0.19.6 (6d2b4b9)
  • tests: bump steady to v0.19.7 (d6cff9d)
  • tests: bump steady to v0.20.1 (284561f)
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) from 0.80.0 to 0.81.0.
- [Release notes](https://github.com/anthropics/anthropic-sdk-typescript/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-typescript@sdk-v0.80.0...sdk-v0.81.0)

---
updated-dependencies:
- dependency-name: "@anthropic-ai/sdk"
  dependency-version: 0.81.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from sjnims as a code owner April 1, 2026 21:23
@dependabot dependabot bot added dependencies Pull requests that update a dependency file npm Pull requests that update npm dependencies labels Apr 1, 2026
@sjnims sjnims merged commit 3f43956 into main Apr 1, 2026
7 of 12 checks passed
@sjnims sjnims deleted the dependabot/npm_and_yarn/anthropic-ai/sdk-0.81.0 branch April 1, 2026 23:18
@claude
Copy link
Copy Markdown
Contributor

claude bot commented Apr 1, 2026

CI Failure Analysis: CI

Run: #23875552583 | Commit: 3f43956

Summary

All 5 CI jobs (Format Check, Test, Lint, Type Check, Dead Code Check) failed during npm ci due to a peer dependency conflict. The project uses typescript@^6.0.2, but madge@8.0.0 has peerOptional typescript@"^5.4.4", causing npm to refuse resolution.

Failures Found

Job Step Issue
All 5 jobs Install dependencies ERESOLVE could not resolvemadge@8.0.0 requires peerOptional typescript@^5.4.4, conflicts with typescript@6.0.2

Root Cause

This is likely a pre-existing issue on main unrelated to this PR's @anthropic-ai/sdk bump. The typescript@^6.0.2 dependency was already in package.json before this PR, and madge@8.0.0 does not support TypeScript 6.x yet.

How to Fix

Option 1 — Update madge to a version that supports TypeScript 6 (if available):

npm install --save-dev madge@latest

Option 2 — Add an overrides field in package.json to force resolution:

{
  "overrides": {
    "madge": {
      "typescript": "$typescript"
    }
  }
}

Then regenerate the lockfile:

npm install

Option 3 — If madge is not critical, consider replacing it or removing it temporarily until it supports TypeScript 6.

Note: The Build job was skipped because it depends on the other jobs passing first.


Analyzed by Claude

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file npm Pull requests that update npm dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant